.home-background {
    background-image: url("public/landing-page/assets/img/bg-awal.png"); /* URL gambar */
    background-size: cover; /* Agar gambar memenuhi area */
    background-position: center; /* Pusatkan gambar */
    background-repeat: no-repeat; /* Tidak mengulang gambar */
    height: 100vh; /* Sesuaikan tinggi dengan viewport */
    width: 100%; /* Lebar penuh */
}
.menu {
    display: flex;
    justify-content: center; /* Pusatkan elemen secara horizontal */
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 130px;
}
.box {
    width: 150px;
    height: 150px;
    text-align: center;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animasi halus */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Bayangan awal */
}
.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.iconguru {
    width: 90px;
}

.iconguru:hover {
    transform: translateY(-10px);
}

a {
    color: black;
    text-decoration: none; /* Hapus garis bawah */
}

a:hover {
    color: gray;
}
p {
    color: black;
}

.content {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .menu {
        gap: 30px;
        margin-top: 140px;
    }

    .box {
        width: 120px;
        height: 120px;
    }

    .box .icon i {
        font-size: 30px !important;
        margin-top: 20% !important;
    }

    .content p {
        font-size: 14px;
    }

    .iconguru {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .menu {
        gap: 20px;
        margin-top: 120px;
    }

    .box {
        width: 100px;
        height: 100px;
    }

    .box .icon i {
        font-size: 24px !important;
        margin-top: 15% !important;
    }

    .content p {
        font-size: 12px;
    }

    .iconguru {
        width: 50px;
    }
}
